projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
8e3e256
)
(open-line): Move fill-prefix insert inside save-excursion.
author
Richard M. Stallman
<rms@gnu.org>
Fri, 31 Dec 1993 05:52:54 +0000
(
05:52
+0000)
committer
Richard M. Stallman
<rms@gnu.org>
Fri, 31 Dec 1993 05:52:54 +0000
(
05:52
+0000)
lisp/simple.el
patch
|
blob
|
history
diff --git
a/lisp/simple.el
b/lisp/simple.el
index fe17f25a9defa90fe743d67a9ea41ddcf2328f14..2a471f61f9ec6caf7b5ee00ecb66b1b56315ac50 100644
(file)
--- a/
lisp/simple.el
+++ b/
lisp/simple.el
@@
-46,8
+46,8
@@
With arg N, insert N newlines."
(forward-char -1)))
(while (> arg 0)
(save-excursion
- (insert ?\n)
)
-
(if do-fill-prefix (insert fill-prefix
))
+ (insert ?\n)
+
(if do-fill-prefix (insert fill-prefix)
))
(setq arg (1- arg)))
(if flag (forward-char 1))))